home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / demo / client / ui / tools / tools_rts_kit.gui < prev    next >
Encoding:
Text File  |  2005-11-23  |  1.2 KB  |  47 lines

  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiControl(tools_rts_kit) {
  3.    profile = "GuiModelessDialogProfile";
  4.    horizSizing = "right";
  5.    vertSizing = "bottom";
  6.    position = "0 0";
  7.    extent = "640 480";
  8.    minExtent = "8 2";
  9.    visible = "1";
  10.    helpTag = "0";
  11.       title = "RTS Starter Kit";
  12.  
  13.    new GuiScrollCtrl() {
  14.       profile = "GuiBevelLoweredProfile";
  15.       horizSizing = "width";
  16.       vertSizing = "height";
  17.       position = "30 106";
  18.       extent = "580 270";
  19.       minExtent = "8 8";
  20.       visible = "1";
  21.       helpTag = "0";
  22.       willFirstRespond = "1";
  23.       hScrollBar = "alwaysOff";
  24.       vScrollBar = "alwaysOn";
  25.       constantThumbHeight = "0";
  26.       childMargin = "0 0";
  27.  
  28.       new GuiMLTextCtrl() {
  29.          profile = "GuiMLTextProfile";
  30.          horizSizing = "width";
  31.          vertSizing = "height";
  32.          position = "2 2";
  33.          extent = "553 514";
  34.          minExtent = "8 2";
  35.          visible = "1";
  36.          helpTag = "0";
  37.          lineSpacing = "2";
  38.          allowColorChars = "0";
  39.          maxChars = "-1";
  40.          text = "main";
  41.             fileName = "demo/client/ui/tools/tools_rts_kit.txt";
  42.       };
  43.    };
  44. };
  45. //--- OBJECT WRITE END ---
  46.  
  47.